home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / source / lib / powerd_lib.lha / PowerD / HiBit.ass < prev    next >
Text File  |  1999-06-23  |  171b  |  15 lines

  1. ; d0 - value
  2.  
  3.     xdef    _HiBit
  4.  
  5. _HiBit    move.l    d1,-(a7)
  6.     moveq    #31,d1
  7. .loop    btst.l    d1,d0
  8.     bne.s    .end
  9.     subq    #1,d1
  10.     tst.b    d1
  11.     bge.s    .loop
  12. .end    move.l    d1,d0
  13.     move.l    (a7)+,d1
  14.     rts
  15.